.snap-btn {
  background: black;
  color: white;
  padding: 14px 28px;
  font-size: 1.2em;
  border: none;
  border-radius: 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.snap-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, #FFFC00, transparent), 
              radial-gradient(circle at bottom right, #4b481b, transparent);
  z-index: -1;
  transition: all 0.4s ease;
}

.snap-btn:hover::before {
  top: 0;
  left: 0;
}


  .embed-wrapper {
      width: 100%;
      max-width: 780px;
      min-width: 288px;
    }

    .snap-embed {
      width: 100%;
    }

     body {
      margin: 0;
      padding: 0;
      font-family: 'Exo', sans-serif;
     
      color: white;
      overflow: hidden;
    }
    .center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: rgba(0, 0, 0, 0.6);
      padding: 40px;
      border-radius: 10px;
      text-align: center;
      max-width: 90%;
    }
    .center h1 {
      font-size: 3em;
      margin-bottom: 20px;
    }
    .center h3 {
      font-size: 1.5em;
      margin-bottom: 30px;
    }
  
    @media (max-width: 600px) {
      .center h1 {
        font-size: 2em;
      }
      .center h3 {
        font-size: 1.2em;
      }
      .center button {
        font-size: 1em;
        padding: 10px 20px;
      }
    }